home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 013 / cdf.arc / CDF.DOC < prev   
Encoding:
Text File  |  1986-08-26  |  3.5 KB  |  79 lines

  1.                      Full Screen Change Directory
  2.                      ============================
  3.                    Copyright 1986, Design Solutions
  4.                         Written By Gene Stempel
  5.  
  6. Notice : This program may be distributed freely provided that no fee or
  7.          consideration is charged, and the program is not modified.  If
  8.          you find this program of any use, any contribution would be
  9.          appreciated, but is NOT required.  Suggestions, comments and
  10.          contributions can be sent to :
  11.  
  12.                             Gene Stempel
  13.                             Design Solutions
  14.                             2231 Provincial House Drive
  15.                             Lansing, MI.  48910
  16.  
  17.  
  18.    This program will display a set of subdirectories on the screen.
  19.    The cursor may then be placed on a particular subdirectory, and by
  20.    pressing the RETURN key, will execute a CD to that subdirectory.
  21.    Page Up, Down can be used in the event that the list exceeds more
  22.    than 1 screen.  To exit without changing subdirectories, press the
  23.    ESCAPE key.
  24.  
  25.  
  26. Usages :    CDF path [>filename]
  27.  
  28.                 The path must include a leading slash (\) (i.e., specified
  29.                 from the root directory.  The reulting subdirectories will
  30.                 be displayed to STDOUT and can optionally be redirected to
  31.                 a file (for usage to be explained further.
  32.  
  33.                 Examples :     CDF \BILLING     will load subdirectory
  34.                                                 list under \BILLING
  35.                                CDF \ > \TREE    will load entire subdirectory
  36.                                                 list and save in \TREE
  37.  
  38.             CDF @filename
  39.  
  40.                 The filename identifies a file containing a list of
  41.                 subdirectory names.  The file may be created using the
  42.                 first form shown above, or any text editor (no formatting
  43.                 characters please!)
  44.  
  45.                 Example :      CDF @\TREE       will load subdirectory
  46.                                                 list contained in \TREE
  47.  
  48.             CDF @<filename
  49.  
  50.                 The filename identifies a file containing a list of
  51.                 subdirectory names.  It differs from the form above in
  52.                 that it is redirected via standard input.
  53.  
  54.                 Examples :     CDF @<\TREE       will load subdirectory
  55.                                                  list contained in \TREE
  56.  
  57.                                FIND "DOS" <\TREE | CDF @
  58.                                                  will load subdirectories
  59.                                                  which contain the string
  60.                                                  "DOS".
  61.  
  62.             CDF
  63.  
  64.                 The filename identified by the environment variable CDF
  65.                 contains the subdirectory list to be used.  The environment
  66.                 variable CDF can be set via the command
  67.  
  68.                                 SET CDF=filename
  69.  
  70.                 An example would be :
  71.  
  72.                                 SET CDF=\TREE
  73.                                 CDF
  74.  
  75.                 The subdirectory list would be loaded from \TREE and all
  76.                 subsequent calls to CDF will yield the same result, until
  77.                 another SET CDF= statement were issued. The SET command
  78.                 could be incorporated into the AUTOEXEC.BAT file.
  79.